home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / OS / FWThread / SLThrdGd.cpp < prev    next >
Encoding:
Text File  |  1996-09-17  |  1018 b   |  40 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                SLThrdGd.cpp
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFound.hpp"
  11.  
  12. #ifndef SLTHRDGD_H
  13. #include "SLThrdGd.h"
  14. #endif
  15.  
  16. void FW_Thread_NoteCreation(FW_ThreadID newlyCreatedThread)
  17. {
  18.     // No try block necessary - Do not throw
  19.  
  20. //    ::DebugStr("\pFW_Thread_NoteCreation");
  21.     FW_CThreadSafe::NoteCreation(newlyCreatedThread);
  22. }
  23.  
  24. void FW_Thread_NoteTermination(FW_ThreadID threadBeingKilled)
  25. {
  26.     // No try block necessary - Do not throw
  27.  
  28. //    ::DebugStr("\pFW_Thread_NoteTermination");
  29.     FW_CThreadSafe::NoteTermination(threadBeingKilled);
  30. }
  31.  
  32. void FW_Thread_NoteSwitch(FW_ThreadID aThread, FW_Boolean switchingIn)
  33. {
  34.     // No try block necessary - Do not throw
  35.  
  36. //    ::DebugStr("\pFW_Thread_NoteSwitch");
  37.     FW_CThreadSafe::NoteSwitch(aThread, switchingIn);
  38. }
  39.  
  40.